home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
333_02
/
p014b.awk
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-04-21
|
246 b
|
13 lines
$2 > 6 { n = n + 1; pay = pay + $2 * $3 }
END {
print ""
if (n > 0)
print (n, "employees, total pay is", pay,
"average pay is", pay / n)
else
print "no employees are paid more than $6/hour"
}